Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Publisher ID
curl --request GET \
--url https://api.tagdeliver.com/v1/tag/{uid}/owners \
--header 'Authorization: Bearer <token>'{
"results": [
{
"id": 0,
"name": "CORE"
},
{
"id": 3,
"name": "DEMO"
}
],
"success": true
}Fetch a list of organisations that are in the owner hierachy of the given publisher, useful for populating the O&O (Owned & Operated) field on the publisher
curl --request GET \
--url https://api.tagdeliver.com/v1/tag/{uid}/owners \
--header 'Authorization: Bearer <token>'{
"results": [
{
"id": 0,
"name": "CORE"
},
{
"id": 3,
"name": "DEMO"
}
],
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Publisher ID
Was this page helpful?